Alex's Monkey Rush    axchos@yahoo.com <-- NOT AOL NOW
by Alex Cho Snyder    Author of Dragon

The point of the game is to collect the bananas without dying

You can move the monkey sideways to collect the bananas
If you go off the screen, you will appear on the other side
If you fall through a gap in the branches you will go down
The only way to go up is to fall down from below onto the top

The spider will chase you and you lose if you touch it
You can wrap around to the other side to avoid the spider

Each banana is worth one point and each level is random
Once you get all the bananas, you will go to the next level

Now you are never stopped by unlucky branch placement
You can flip down over a branch by pressing down, but
then you lose a banana, which flashes

The screen looks like this - (note: "n" is pi, and "=" is unequals)

        Bananas
             \
        X n  n  nn n  n 
      / =  ==== == ==   
Monkey     n  n  n nn  n
          ==   ===   = =
           n n   n   n    Spider  
          = === ====   = /
        n n   n  n  n  M
             =   == =  =
                  \
             Branches

Controls -

Arrows - Move sideways or down
Clear  - Display level and score and quit

At the animated intro screen, press any key
At the instructions, press enter to continue

Programming -

Vars -

A - Current level
B - Bananas eaten
C - Monkey position coord X (1-7 ODD)
D - Monkey position coord Y (1-16)
E - Spikey position coord X (1-7 ODD)
F - Spikey position coord Y (1-16)
G - Old C var when flipping down
H - For loop var

[A] - Banana matrix (4x16)
[B] - Branch matrix (4x16)

Screen -

	  1 2 3 4 5 6 7 8 9 10111213141516
[A](1,x	1 / / / / / / / / / / / / / / / / 
[B](1,x	2 - - - - - - - - - - - - - - - -
[A](2,x	3 / / / / / / / / / / / / / / / / 
[B](2,x	4 - - - - - - - - - - - - - - - -
[A](3,x	5 / / / / / / / / / / / / / / / / 
[B](3,x	6 - - - - - - - - - - - - - - - -
[A](4,x	7 / / / / / / / / / / / / / / / / 
[B](4,x	8 - - - - - - - - - - - - - - - -